home *** CD-ROM | disk | FTP | other *** search
- /****i* SOURCE_FILE/INFO
- *
- * NAME
- * UPConstants.js
- *
- * USAGE
- * Part of Netobjects JavaScript Library.
- *
- * COPYRIGHT
- * Copyright ⌐ 2002-2004 Website Pros, Inc.
- * All Rights Reserved.
- *
- * This is an unpublished work protected by Website Pros, Inc.
- * as a trade secret, and is not to be used or disclosed except as
- * expressly provided in a written license agreement executed by
- * you and Website Pros, Inc.
- *
- * <copyright@websitepros.com>
- *
- * NOTES
- * JavaScript code.
- *****/
- if (typeof(UPConstants) == "undefined")
- {
-
- var UPConstants = {
-
- NOF_UP_MODULE_TYPE : "UserProfile",
-
- NOF_UP_MODULE_TEMPLATE :
- "<?xml version=\"1.0\"?>" +
- "<userProfile version=\"1\" xmlns:nof=\"http://www.netobjects.com/fusion/userProfile\">" +
- "<nof:firstName></nof:firstName>" +
- "<nof:lastName></nof:lastName>" +
- "<nof:email></nof:email>" +
- "<nof:companyName></nof:companyName>"+
- "<nof:address1></nof:address1>"+
- "<nof:address2></nof:address2>"+
- "<nof:city></nof:city>"+
- "<nof:state></nof:state>"+
- "<nof:zip></nof:zip>"+
- "<nof:country></nof:country>"+
- "<nof:phone></nof:phone>"+
- "<nof:eveningPhone></nof:eveningPhone>"+
- "<nof:fax></nof:fax>"+
- "<nof:upDefined></nof:upDefined>"+
- "<nof:askProfile></nof:askProfile>"+
- "</userProfile>" ,
-
- NOF_UP_FIRST_NAME : "nof:firstName",
- NOF_UP_LAST_NAME : "nof:lastName",
- NOF_UP_EMAIL : "nof:email",
- NOF_UP_COMPANY_NAME : "nof:companyName",
- NOF_UP_ADDRESS1 : "nof:address1",
- NOF_UP_ADDRESS2 : "nof:address2",
- NOF_UP_CITY : "nof:city",
- NOF_UP_STATE : "nof:state",
- NOF_UP_ZIP : "nof:zip",
- NOF_UP_COUNTRY : "nof:country",
- NOF_UP_PHONE : "nof:phone",
- NOF_UP_EVENING_PHONE : "nof:eveningPhone",
- NOF_UP_FAX : "nof:fax",
- NOF_UP_DEFINED : "nof:upDefined",
- NOF_UP_ASK_PROFILE : "nof:askProfile"
- }
-
- }